From: Didier Raboud Date: Mon, 23 Apr 2012 13:45:00 +0000 (+0200) Subject: Make the cursor invisible when printing the Fancy output status block. X-Git-Tag: archive/raspbian/10.2018112800+rpi1^2~149 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=afeef6182e763c6479363abdb6595abbf847fd9b;p=lsb.git Make the cursor invisible when printing the Fancy output status block. Signed-off-by: Didier Raboud --- diff --git a/init-functions b/init-functions index 6c89701..e4e7ab7 100644 --- a/init-functions +++ b/init-functions @@ -413,6 +413,7 @@ log_end_msg_pre () { YELLOW=$( $TPUT setaf 3) NORMAL=$( $TPUT op) + $TPUT civis $TPUT sc $TPUT hpa 0 if [ $1 -eq 0 ]; then @@ -423,6 +424,7 @@ log_end_msg_pre () { /bin/echo -ne "[${RED}FAIL${NORMAL}" fi $TPUT rc + $TPUT cnorm fi } log_end_msg_post () { :; }